{% extends 'dashboards/base_dashboard.html' %} {% block extra_css %} {% endblock %} {% block extra_js %} {{ monthly_data_json|json_script:"monthlyData" }} {{ department_data_json|json_script:"departmentData" }} {% endblock %} {% block stats %}

Welcome back, {{ request.user.get_full_name|default:request.user.username }}!

Here's what's happening with your tasks today

Total Tasks

{{ total_tasks }}

{{ completion_rate|default:0 }}% completion rate

Completed

{{ completed_tasks }}

{{ completion_rate|floatformat:0 }}%

{{ completed_this_week }} this week

In Progress

{{ pending_tasks }}

{{ high_priority_tasks|length }} high
{% widthratio pending_tasks total_tasks 100 %}%

{{ pending_tasks }} tasks in progress

Departments

{{ active_departments }}

Active
{% widthratio active_departments departments.count 100 %}%

{{ departments.count }} total departments

Departments
{{ departments|length }} total

{{ active_departments }}

Active
{% widthratio active_departments departments.count 100 %}%

{{ departments.count }} total departments

Task Completion Trend (Last 6 Months)
Task Distribution by Department
{% endblock %} {% block left_column %}
Tasks Awaiting Approval
{% for task in tasks_awaiting_approval %}
{{ task.title }} {{ task.get_priority_display }} {% if task.scope == 'national' %} National Level {% endif %}

Created by: {{ task.created_by.get_full_name|default:task.created_by.username }} | Due: {{ task.due_date|date:"M d, Y"|default:"No due date" }}

{{ task.description|truncatewords:20 }}

{% if task.rejection_reason %}
Previous Rejection Reason: {{ task.rejection_reason }}
{% endif %}
{% empty %}
No tasks awaiting approval.
{% endfor %}
{% for task in tasks_awaiting_approval %} {% empty %} {% endfor %}
Title Department Assigned To Due Date Actions
{{ task.title }} {{ task.assigned_to.department.name|default:"-" }} {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} {{ task.due_date|date:"M d, Y" }}
No tasks awaiting approval
High Priority Tasks
{% for task in high_priority_tasks %} {% empty %} {% endfor %}
Title Department Assigned To Due Date Status
{{ task.title }} {{ task.assigned_to.department.name|default:"-" }} {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} {{ task.due_date|date:"M d, Y" }} {{ task.get_status_display }}
No high priority tasks
Recent Tasks
{% for task in recent_tasks %} {% empty %} {% endfor %}
Title Department Assigned To Status Due Date
{{ task.title }} {{ task.assigned_to.department.name|default:"-" }} {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} {{ task.get_status_display }} {{ task.due_date|date:"M d, Y" }}
No tasks found
{% endblock %} {% block right_column %}
Quick Actions
Departments Overview
Total Departments
{{ departments.count }}
Department List
    {% for dept in departments %}
  • {{ dept.name }} {{ dept.user_set.count }} users
  • {% empty %}
  • No departments found
  • {% endfor %}
{% endblock %}